<vdb name="{vdb-name}" version="1"> <model name="{model-name}" type="PHYSICAL"> <source name="AccountsDB" translator-name="oracle" connection-jndi-name="java:/oracleDS"/> <metadata type="NATIVE"></metadata> </model> </vdb>
Traditionally the metadata for a Virtual Database is built by Teiid Designer and supplied to Teiid engine through a VDB archive file. This VDB file contains the metadata files called INDEX files, that are then read by a specific instance of MetadataRepository by name INDEX.
In the Dynamic VDB scenario, currently there are two predefined facilities to define metadata
This is only applicable on source models (also default), when used the metadata for the model is retrieved from the source database itself.
<vdb name="{vdb-name}" version="1"> <model name="{model-name}" type="PHYSICAL"> <source name="AccountsDB" translator-name="oracle" connection-jndi-name="java:/oracleDS"/> <metadata type="NATIVE"></metadata> </model> </vdb>
<vdb name="{vdb-name}" version="1"> <model name="{model-name}" type="PHYSICAL"> <source name="AccountsDB" translator-name="oracle" connection-jndi-name="java:/oracleDS"/> <metadata type="DDL"> **DDL Here** </metadata> </model> </vdb>
This is applicable to both source and view models. When DDL is defined as metadata import type, the model's metadata can be defined as DDL. See DDL Metadata for more information on how to use this feature.
When defining the metadata import type for a model, user can define comma separated list of importers, such that all the repository instances defined by import types are consulted in the order they have configured to gather the metadata for the given model. For example:
<vdb name="{vdb-name}" version="1"> <model name="{model-name}" type="PHYSICAL"> <source name="AccountsDB" translator-name="oracle" connection-jndi-name="java:/oracleDS"/> <metadata type="NATIVE,DDL"> **DDL Here** </metadata> </model> </vdb>
For the above model, NATIVE importer is first used, then DDL importer used to add additional metadata to NATIVE imported metadata.
If above provided metadata facilities are not sufficient for user's needs then user can extend MetadataRepository interface provided in the org.teiid.api package to plug-in their own metadata facilities into Teiid engine. For example, use can write metadata facility that is based on reading data from database, or JCR repository etc. For setting up build environment see Setting up the build environment. For Example
package com.something; public class CustomMetadataRepository extends BaseMetadataRepository { @Override public void loadMetadata(MetadataFactory factory, ExecutionFactory executionFactory, Object connectionFactory) throws TranslatorException { /* Provide implementation and fill the details in factory */ super.loadMetadata(factory, executionFactory, connectionFactory); } }
Then build a JAR archive with above implementation class and create file named org.teiid.metadata.MetadataRepository in META-INF/services directory with contents
com.something.CustomMetadataRepository
Now that the JAR file has been built, this needs to be deployed in the JBoss AS as module under <jboss-as>/modules directory. Follow the below steps to create a module.
Create a directory <jboss-as>/modules/com/something/main
Under this directory create "module.xml" file that looks like
<?xml version="1.0" encoding="UTF-8"?> <module xmlns="urn:jboss:module:1.0" name="com.something"> <resources> <resource-root path="something.jar" /> </resources> <dependencies> <module name="javax.api"/> <module name="javax.resource.api"/> <module name="org.jboss.teiid.common-core"/> <module name="org.jboss.teiid.teiid-api" /> </dependencies> </module>
Copy the jar file under this same directory. Make sure you add any additional dependencies if required by your implementation class under dependencies.
Restart the server
The below XML fragment shows how to configure the VDB with the custom metadata repository created
<vdb name="{vdb-name}" version="1"> <model name="{model-name}" type="PHYSICAL"> <source name="AccountsDB" translator-name="oracle" connection-jndi-name="java:/oracleDS"/> <metadata type="{metadata-repo-module}"></metadata> </model> </vdb>
Now when this VDB gets deployed, it will call the CustomMetadataRepository instance for metadata of the model. Using this you can define metadata for single model or for the whole VDB programatically.